Day Three

Creating the Accounts neede and setup the GitHub Repositries.



Creating accounts for pre fab academy
-

Day 3 our first task was to create the following account

• Fablabs.io account - created a new one.
• git.fabcloud.io account - created a new one.
• Google account - already had one
• Youtube and/or Vimeo account - already had youtube account
• Github account - created a new one.
• Dropbox account - already had one
• Sketchfab.com account - created a new one.


Creating Github Repositories
-

GIT is the most accomplished distributed version control system.It helps us to manage our own project locally using a version control tool or if we want modify a code that is located in a remote central GIT repository.

Installing and configuring git

$sudo apt-get install git

Specify username and email address

specify your username and email address to your GIT repository using “git config” as shown below.

git config --global user.name "username"

git config --global user.email email@email.com


Verify the git configuration information as shown below.

$ git config --list

create a new repository, named username.github.io.

Clone the created repo to our PC.

$ git clone https://github.com/username/username.github.io

Git push

Move to that folder and create index.html and some content. Now we need to push this.Add, commit, and push your changes:

$ git add --all #adding files
$ git commit -m "Initial commit"#Adding Comments
$ git push -u origin master # pushing


<